home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / krb_pingpong.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  60 lines

  1.  
  2. #
  3. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7. #T
  8.  
  9. if(description)
  10. {
  11.  script_id(10640);
  12.  script_cve_id("CVE-1999-0103");
  13.  script_version ("$Revision: 1.9 $");
  14.  name["english"] = "Kerberos PingPong attack";
  15.  name["francais"] = "Kerberos PingPong attack";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.     desc["english"] = "
  19. The remote host is running a kerberos server, which seems to be vulnerable 
  20. to a 'ping-pong' attack.
  21.  
  22. When contacted on the UDP port, this service always respond, even
  23. to malformed requests.
  24.  
  25. An easy attack is 'ping-pong' in which an attacker spoofs a packet between 
  26. two machines running this service. This will cause them to spew characters at 
  27. each other, slowing the machines down and saturating the network. 
  28.                      
  29. Solution : Disable this service if you do not use it.
  30. Risk factor : Low";
  31.  
  32.  
  33.  
  34.  script_description(english:desc["english"]);
  35.  
  36.  
  37.  summary["english"] = "Checks for the presence of a bad krb server";
  38.  script_summary(english:summary["english"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison");
  43.  
  44.  family["english"] = "Misc.";
  45.  script_family(english:family["english"]);
  46.  exit(0);
  47. }
  48.  
  49.  
  50. if(!get_udp_port_state(464))exit(0);
  51.  
  52. soc = open_sock_udp(464);
  53. crp = crap(25);
  54. if(soc)
  55. {
  56.  send(socket:soc, data:crp);
  57.  r = recv(socket:soc, length:5);
  58.  if(r)security_warning(port:464, protocol:"udp");
  59. }
  60.